520. 检测大写字母
为保证权益,题目请参考 520. 检测大写字母(From LeetCode).
解决方案1
Python
python
# 520. 检测大写字母
# https://leetcode-cn.com/problems/detect-capital/
################################################################################
import re
class Solution:
def detectCapitalUse(self, word: str) -> bool:
return re.search("^(([A-Z])+|([A-Z]?[a-z]*))$", word) is not None
################################################################################
if __name__ == "__main__":
solution = Solution()
print(solution.detectCapitalUse("ASSsD"))
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17